home *** CD-ROM | disk | FTP | other *** search
- on checkCastDimensions
- set ww to 0
- set hh to 0
- repeat with i = 82 to 121
- put "cast " & the name of cast i & " ΓÇóΓÇó w = " & the width of cast i
- if the width of cast i > ww then
- set ww to the width of cast i
- end if
- end repeat
- put " "
- repeat with i = 82 to 121
- put "cast " & the name of cast i & "h = " & the height of cast i
- if the height of cast i > hh then
- set hh to the height of cast i
- end if
- end repeat
- put "max width = " & ww
- put "max height = " & hh
- end
-